/* =============================
   Global Variables & Reset
   ============================= */
:root {
  --dark-bg: #0e1a2b;
  --light-bg: #14243d;
  --primary: #2563eb;
  --secondary: #1e3a8a;
  --accent: #dedde0;
  --text-light: #f0f0f0;
  --text-mid: #cccccc;
  --text-dark: #171616;
  --gradient-navbar: linear-gradient(90deg, #203a43 0%, #2c5364 100%);
  --gradient-hero: linear-gradient(120deg,
      var(--secondary) 0%,
      var(--primary) 100%);
  --gradient-section: linear-gradient(135deg,
      var(--dark-bg) 0%,
      var(--light-bg) 100%);
  --font: "Lexend Deca", sans-serif;
  --heading-size: 2.5rem;
  --para-size: 1rem;
  --para-small-size: 0.89rem;
  --line-height: 1.6;
  --line-height-1: 2;
  --section-pad: 60px 20px;
  --card-pad: 20px;
  --card-radius: 12px;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: var(--line-height);
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: var(--heading-size);
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: center;
}

p {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
  text-decoration: none;

}

ul {
  list-style: none;
  padding: 0;
}

/* =============================
       Hero Section
       ============================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: left;
  justify-content: flex-start;
  /* Align container to the left */
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.95) saturate(2.5);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 32, 54, 0.62);
  z-index: 1;
  pointer-events: none;
}

.custom-container {
  position: relative;
  z-index: 2;
  text-align: left !important;
  color: #fff;
  padding: 0 30px;
  /* Adjusted padding for left edge */
  /* max-width: 600px; Narrower container for content */
  margin: 0;
  /* Removed auto margin to stick to left */
  display: flex;
  flex-direction: column;

}

.gradient-text {
  text-align: left;
  font-size: 4rem;
  font-weight: 900;
  /* font-family: "Lexend Giga", sans-serif; */
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #d1e7fc;
  margin-bottom: 2px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0.5px 0.5px 1.5px #84bef5);
}

.fee-text {
  text-align: left;
  font-size: 1.55rem;
  font-weight: 600;
  position: relative;
}

.fee-text .nowrap {
  white-space: nowrap;
}

.fee-text::after {
  content: '';
  position: absolute;
  left: 0;
  width: 68%;
  height: 0.8px;
  background-color: currentColor;
  /* Or use a specific color like #000 */
  transform: scaleY(0.5);
  /* Helps render crisp 0.5px lines */
}

/* .fee-text::before {
        top: 0;
      }
       */
.fee-text::after {
  bottom: 0;
}



.large-text {
  font-size: 2rem;
  color: #f2f9bc;
  margin-top: 3rem;
  margin-bottom: 20rem;
  font-weight: 600;
}

.anm-text .typed-text {
  color: #7fcced;
}

.anm-text .cursor.typing {
  animation: blink 1s step-end infinite;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: transparent;
  /* no border bg */
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 Box shadow for circular image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Optional: inner image shadow */
  filter: drop-shadow(0.5px 0.5px 3px 5px #111111c9);
}



.cta-text {
  font-size: 1.7rem;
  color: #f2f9bc;
  margin-bottom: 0;
}

.cta-text small {
  display: block;
  margin: 0 5px 16px 5px;

  font-size: 1rem;
  color: #edf5ae;
}

.lets-talk.btn-cta {
  display: inline-block;
  padding: 0.85em 2.1em;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.lets-talk.btn-cta:hover,
.lets-talk.btn-cta:focus {
  background: #1e40af;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.3);
}

/* Padding Utilities */
.padding-t-120 {
  padding-top: 120px;
}

.padding-b-120 {
  padding-bottom: 120px;
}

/* Keyframes */
@keyframes blink {

  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .gradient-text {
    font-size: 2rem;
  }

  .large-text {
    font-size: 1.2rem;
  }

  .logo-box {
    width: 60px;
    height: 30px;
  }

  .container {
    padding: 0 20px;
    /* Reduced padding for mobile */
  }
}

/* =============================
       Feature Section
       ============================= */
.feature-section {
  position: relative;
  padding: var(--section-pad);
  background: var(--gradient-navbar);
  color: var(--text-light);
  text-align: center;
}

.feature-header {
  margin-bottom: 2rem;
}

.feature-title-sm {
  font-size: 1.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-title-lg {
  font-size: var(--heading-size);
  margin-bottom: 1rem;
}

.feature-description {
  /* font-size: 0.4rem; */
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-mid);
  font-size: var(--para-small-size);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: var(--light-bg);
  padding: var(--card-pad);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.feature-item-description {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.feature-item-link {
  color: var(--accent);
  font-weight: 600;
}

.feature-illustration {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  margin-top: 1rem;
}

/* =============================
       Propel Section
       ============================= */
.propel-section {
  padding: var(--section-pad);
  background: var(--gradient-section);
  color: var(--text-light);
}

.propel-img img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.propel .heading h6 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.propel .heading h2 {
  font-size: var(--heading-size);
  margin-bottom: 1rem;
  color: var(--text-light);
}

.propel-text p {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.propel {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* =============================
       Projects Section
       ============================= */
.projects {
  padding: var(--section-pad);
  background: var(--gradient-section);
  color: var(--text-light);
}

.section-business .heading h2 {
  font-size: var(--heading-size);
  margin-bottom: 1rem;
}

.better-business p {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.business-img img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.business-carousel .item {
  background: var(--light-bg);
  padding: var(--card-pad);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  color: var(--primary);
}

.business-carousel .count {
  font-size: 2.5rem;
  color: var(--accent);
}

.business-carousel sup {
  font-size: 1.2rem;
  vertical-align: super;
}

/* =============================
       FAQ Section
       ============================= */
.faq-section {
  padding: var(--section-pad);
  background: var(--gradient-section);
  color: var(--text-light);
}

.faq-section h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: 600;
}

.faq-section h1 {
  font-size: var(--heading-size);
  margin-bottom: 1.5rem;
  text-align: left;
  font-weight: 700;
}

.accordion-button {
  font-size: var(--para-size);
  background: var(--light-bg);
  color: var(--accent);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  transition: background var(--transition), color var(--transition),
    box-shadow var(--transition);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(255, 111, 97, 0.4);
}

.accordion-button:hover {
  background: var(--secondary);
  color: var(--accent);
  box-shadow: 0 6px 15px rgba(255, 111, 97, 0.6);
}

.accordion-body {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: var(--card-pad);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.accordion-item {
  background: transparent;
  margin-bottom: 1rem;
}

.faq-illustration {
  max-width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.faq-illustration:hover {
  transform: scale(1.05);
}

/* Responsive tweaks
      @media (max-width: 991px) {
        .faq-section h1 {
          font-size: 2.5rem;
        }
      }
      
      @media (max-width: 575px) {
        .faq-section {
          padding: 40px 15px;
        }
        .accordion-button {
          font-size: 1rem;
        }
      } */

/* =============================
       Blog Section
       ============================= */
/* Latest News / Blog Section */
.blog-section {
  padding: var(--section-pad);
  background: var(--gradient-section);
  color: var(--text-light);
}

/* Section Heading */
.blog-section .heading {
  margin-bottom: 2rem;
}

.blog-section .heading h6 {
  font-size: var(--para-small-size);
  color: var(--accent);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.blog-section .heading h2 {
  font-size: var(--heading-size);
  margin-bottom: 1rem;
  color: var(--accent);
}

/* Grid Layout */
.blog-section .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card Styles */
.blog-card {
  background: var(--light-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 8px 4px rgba(146, 144, 144, 0.2);
}

/* Image Container (Fixed) */
.blog-card .blog-img {
  position: static !important;
  width: 100%;
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.blog-card .blog-img img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Card Body */
.blog-card .card-body {
  padding: 1rem;
}

.blog-card .card-date {
  font-size: var(--para-small-size);
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.blog-card .card-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0.5rem 0;
  line-height: 1.3;
}

.blog-card .card-author {
  font-size: var(--para-small-size);
  color: var(--text-light);
}

/* “View All News” Button */
.btn-view-all {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 0.75rem 1.5rem;
}

/* Responsive Tweak for Mobile */
@media (max-width: 576px) {
  .blog-card .card-body {
    padding: 0.75rem;
  }

  .blog-section .heading h2 {
    font-size: calc(var(--heading-size) * 0.9);
  }
}

/* =============================
       Contact Section
       ============================= */
/* Contact Section */
.contact-section {
  padding: var(--section-pad);
  background: var(--gradient-section);
}

.contact-section .together h2 {
  font-size: var(--heading-size);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.contact-section .together p {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.contact-section .together-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.contact-section .together-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.contact-section .together-list li img {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.contact-section .together-list li span {
  color: var(--text-light);
  font-size: var(--para-size);
}

/* Make button block-level on small screens */
@media (max-width: 576px) {
  .contact-section .together .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Image sizing */
.contact-section .together-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* Center image on smaller screens */
@media (max-width: 992px) {
  .contact-section .together-img {
    text-align: center;
    margin-top: 1.5rem;
  }
}

/* =============================
       Footer
       ============================= */

footer {
  background: #0d1b2a;
  color: #e0e0e0;
  padding: 4rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
}

.subscribe-box i {
  font-size: 3rem;
  color: #89c4f4;
}

.subscribe-box h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.subscribe-box p {
  font-size: 1rem;
  color: #b0b0b0;
}

.subscribe-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 50px;
  outline: none;
}

.subscribe-form button {
  flex-shrink: 0;
}

.contact-info h4,
.footer-links h4 {
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  text-align: start;
}

.contact-info ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li,
.footer-links ul li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #89c4f4;
}

.footer-links ul li a {
  color: #89c4f4;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #b3e5fc;
  text-decoration: underline;
}

.social-icons a {
  font-size: 1.4rem;
  color: #eeeeee;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00bcd4;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-logo {
  background-color: #add3f2;
  border-radius: 60%;
  padding: 0.65rem;
  max-width: 60px;
  max-height: 6opx;
  filter: brightness(1);
  box-shadow: 2px 3px 4px #b4bbc3;
}

/* Heartbeat animation for Quote button */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
  transform-origin: center;
}

/* =============================
       Animations
       ============================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tada {

  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-10deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(8deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-10deg);
  }
}

@keyframes slide-in {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  50% {
    border-color: var(--accent);
  }
}

/* --------------------------------------- */
/* ------------About Page Styles  -------- */
/* --------------------------------------- */
.about-us-section {
  padding: 80px 0;
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.about-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.about-card {
  background: rgba(20, 36, 61, 0.9);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.about-card h2 {
  color: var(--accent);
  font-size: var(--heading-size);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
}

.about-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;

  width: 60%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.about-card h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-mid);
  font-size: var(--para-size);
  line-height: 1.8;
}

.highlight-text {
  color: var(--primary);
  font-weight: 600;
}

.animate__fadeInUp {
  animation-duration: 1s;
}

/* =============================
   Company Philosophy Section Styles
   ============================= */
.philosophy-section {
  padding: var(--section-pad);
  background: var(--gradient-section);
}

.philosophy-section .text-custom {
  color: var(--accent);
  font-family: var(--font);
  font-size: var(--heading-size);
  font-weight: 600;

  text-align: left;
  /* Override global centering for h2 */
  margin-bottom: 1.5rem;
}

.philosophy-section p {
  font-family: var(--font);
  font-size: var(--para-size);
  color: var(--text-mid);
  line-height: var(--line-height-1);
  margin-bottom: 1.5rem;
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary);
  }
}

.philosophy-section .btn-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  font-family: var(--font);
  font-size: var(--para-size);
  padding: 0.75rem 1.5rem;
  border-radius: var(--card-radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.philosophy-section .btn-cta:hover {
  background: var(--secondary);
  color: var(--accent);
  transform: translateY(-2px);
}

.philosophy-section img {
  object-fit: contain;
  object-position: center;
  /* Fixed the invalid 'e' value */
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.philosophy-section img:hover {
  transform: scale(1.05);
}

/* =============================
   Timeline Journey Section Styles
   ============================= */

/* Timeline Section */
.timeline-section {
  background: var(--gradient-section);
  padding: var(--section-pad);
}

.timeline-section .heading h6 {
  font-size: var(--para-small-size);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.timeline-section .heading h2 {
  font-size: var(--heading-size);
  color: var(--accent);
  margin-bottom: 2rem;
}

/* The vertical line */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Items */
.timeline-item {
  position: relative;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.timeline-item .timeline-content {
  background: var(--light-bg);
  padding: var(--card-pad);

  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
  border-radius: 100px 100px 10px 10px;
  border: 1px solid var(--light-bg);
}

.timeline-item .timeline-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-item .timeline-content p {
  font-size: var(--para-size);
  color: var(--text-mid);
  line-height: var(--line-height-1);
  margin: 0;
}

/* Icon */
.timeline-icon {
  position: absolute;
  top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
  z-index: 3;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===== CSS ===== *//* ===== CSS ===== */
.team-section {
  position: relative;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient-section);
  padding: var(--section-pad);
  overflow: hidden;
}

.team-circle {
  position: relative;
  width: 90vw;
  max-width: 500px;
  aspect-ratio: 1;
  margin: auto;
}

.team-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  animation: orbit 15s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes orbit {
  to { transform: rotate(360deg); }
}

/* Center circle with glow */
.team-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  width: 30%;
  max-width: 180px;
  aspect-ratio: 1;
  margin: auto;
  background: var(--gradient-hero);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 20px var(--primary);
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  0%  { box-shadow: 0 0 20px var(--primary); }
  100%{ box-shadow: 0 0 40px var(--primary); }
}

/* Team members */
.team-member {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(80px, 18%, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform var(--transition);
  transform: translate(-50%, -50%);
}
.team-member img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Hover scaling */
.team-member:hover {
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 10;
}

/* Fade edges */
.team-section::before,
.team-section::after {
  content: "";
  position: absolute; top: 0;
  width: 30%; height: 100%;
  pointer-events: none; z-index: 2;
}
.team-section::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg), transparent);
}
.team-section::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg), transparent);
}

/* Modal overrides & button styling */
.modal-content {
  background: var(--light-bg);
  color: var(--text-light);
}
.modal-header {
  display: flex;
  justify-content: space-between !important;
}
.modal-header .btn-close {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
  background-color: var(--secondary);
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
.modal-body img {
  max-width: 200px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 50%;
}
.modal-body .position {
  font-weight: bold;
  margin-top: 10px;
}
.modal-body .bio {
  font-size: 1rem;
  margin-top: 10px;
}
.modal-body .social-links {
  margin-top: 15px;
}
.modal-body .social-links a {
  margin: 0 10px;
  font-size: 1.2rem;
  color: var(--primary);
}


/* =============================
     Core Values Section
     ============================= */


/* Values Section */
.values-section {
  padding: 3rem 1rem;
  background: var(--tile-gradient);
  color: var(--text-light);
}

.values-section .subtitle {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.values-section h2 {
  margin: 0.5rem 0 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-section .intro {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.flip-card {
  perspective: 1000px;
  width: 100%;
  max-width: 260px;
  height: 260px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform var(--transition);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Front */
.flip-card-front {
  background: var(--light-bg);
}

.flip-card-front i {
  font-size: 5rem !important;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.flip-card-front h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.flip-card-front p {
  font-size: 0.95rem;
  color: var(--text-mid);
  text-align: center;
}

/* Back */
.flip-card-back {
  background: var(--dark-bg);
  transform: rotateY(180deg);
}

.flip-card-back p {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  line-height: var(--line-height);
}


/* Section Background & Text */
.values-section {
  background: var(--gradient-section);
  color: var(--text-light);
}

.values-section .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.values-section h2 {
  color: var(--accent);
}

.values-section .intro {
  max-width: 600px;
  color: var(--text-mid);
  margin-bottom: 3rem;
}



/* Project Page CSS */
/* ========== Portfolio Specific ========== */
#projects {
  background: var(--dark-bg);
}

.project-tab {
  margin: 5px 10px;
  cursor: pointer;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 25px;
  background-color: transparent;
  color: var(--accent);
  transition: var(--transition);
  font-size: 1rem;
}

.project-tab:hover,
.project-tab.active {
  background: var(--gradient-hero);
  color: white;
}

.card-title {
  font-weight: 600;
  color: var(--accent);
}

.card {
  background-color: var(--light-bg);
  border: none;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-pad);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.live-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary);
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  color: white;
  font-size: var(--para-small-size);
  transition: var(--transition);
}

.live-preview-btn:hover {
  background-color: var(--secondary);
}

/* testimonial page css */
/* Testimonial Carousel Styles */
/* Testimonial Section */
.testimonials-section {
  background: var(--gradient-section);
  padding: var(--section-pad);
  /* border-radius: var(--card-radius); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Carousel Container */
#testimonials .carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Carousel Inner for vertical center */
#testimonials .carousel-inner {
  display: flex;
  align-items: center;
  min-height: 380px;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
  min-width: 250px;
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  z-index: 1;
  overflow: visible;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  background: var(--gradient-hero);
  transform: rotate(15deg);
  opacity: 0.08;
  z-index: 0;
  border-radius: var(--card-radius);
  filter: blur(12px);
}

.testimonial-img-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.testimonial-name {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 0.75rem;
}

.testimonial-position {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
}

.testimonial-quote {
  font-size: var(--para-small-size);
  color: var(--text-mid);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Carousel Controls - Side Centered */
#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  outline: none;
  opacity: 0.8;
  transition: opacity 0.2s;
  opacity: 0.001;
}

#testimonials .carousel-control-prev {
  left: -30px;
}

#testimonials .carousel-control-next {
  right: -30px;
}

#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
  background-image: none;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#testimonials .carousel-control-prev-icon::before,
#testimonials .carousel-control-next-icon::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#testimonials .carousel-control-prev-icon::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

#testimonials .carousel-control-next-icon::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  #testimonials .carousel-control-prev {
    left: -16px;
  }

  #testimonials .carousel-control-next {
    right: -16px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-card {
    min-width: 220px;
    max-width: 300px;
    padding: 1rem;
  }

  .testimonial-img-wrapper {
    width: 70px;
    height: 70px;
  }

  .testimonial-name {
    font-size: 1.1rem;
  }

  .testimonial-position {
    font-size: 0.9rem;
  }

  #testimonials .carousel-inner {
    min-height: 320px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    min-width: 200px;
    max-width: 280px;
  }

  #testimonials .carousel-inner {
    min-height: 280px;
  }

  #testimonials .carousel-control-prev,
  #testimonials .carousel-control-next {
    top: 99%;
    transform: none;
    width: 40px;
    height: 40px;
  }

  #testimonials .carousel-control-prev {
    left: 10%;
  }

  #testimonials .carousel-control-next {
    right: 10%;
  }
}


/* Our Esteemed Clients Section */
a.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  animation: bounceIn 0.8s ease-out 2s both;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: left;
  text-decoration: none;
}

a.cta-button:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Section */
.our-esteemed-clients-section {
  background: var(--gradient-section);
  padding: 10px 0 40px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Particle BG */
.particle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle-bg .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: floatParticle 12s infinite ease-in-out;
}

.particle-bg .particle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.particle-bg .particle:nth-child(2) {
  top: 55%;
  left: 25%;
  animation-delay: 3s;
}

.particle-bg .particle:nth-child(3) {
  top: 35%;
  left: 65%;
  animation-delay: 6s;
}

.particle-bg .particle:nth-child(4) {
  top: 75%;
  left: 45%;
  animation-delay: 9s;
}

/* Heading Row */
.clients-heading-row {
  align-items: center;
}

.heading-text {
  padding-right: 2rem;
}

.heading-text h2 {

  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: left;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(59, 68, 85, 0.4);
  font-weight: 900;
}

.heading-text p {
  color: #f2f9bc;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.heading-image {
  max-width: 100%;
  width: 440px;
  min-width: 300px;
  border-radius: var(--card-radius);
  /* box-shadow: var(--card-shadow); */
  filter: drop-shadow(1px 2px 5px #bcd0f9);
  animation: slideInRight 1s ease-out 0.4s both;
  display: block;
  margin-left: auto;
  margin-right: 0;
  background: transparent;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 2.5rem 0 1.5rem 0;
}

.stat-item {
  text-align: left;
  padding: var(--card-pad);
  background: var(--light-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  animation: scaleUp 0.8s ease-out both;
}

.stat-item h3 {
  font-size: 2rem;
  color: #fbf7b8;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* Logos */
.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.client-logo {
  width: 140px;
  height: 140px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  animation: pulseRotate 1.2s ease-out both;
  transition: transform var(--transition), box-shadow var(--transition);
}

.client-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.client-logo div {
  width: 100px;
  height: 40px;
  background: rgba(255, 255, 255, 0.093);
  border-radius: 8px;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseRotate {
  0% {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }

  50% {
    transform: rotate(5deg) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(15px, -25px);
    opacity: 0.6;
  }

  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .heading-image {
    width: 320px;
    min-width: 180px;
  }

  .heading-text {
    padding-right: 1rem;
  }

  .heading-text h2 {

    font-size: 3rem;
  }

  .stats-grid {
    gap: 1.2rem;
  }

  .client-logo {
    width: 110px;
    height: 110px;
  }

  .client-logo div {
    width: 70px;
    height: 25px;
  }
}

@media (max-width: 767.98px) {
  .clients-heading-row {
    flex-direction: column-reverse !important;
    text-align: left;
    gap: 1.5rem;
  }

  .heading-text {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .heading-text h2 {

    font-size: 2rem;
  }

  .heading-image {
    width: 100%;
    min-width: 120px;
    max-width: 350px;
    margin: 0 auto 1.5rem auto;
    display: block;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1rem;
  }

  .clients {
    gap: 1rem;
  }

  .client-logo {
    width: 80px;
    height: 80px;
  }

  .client-logo div {
    width: 45px;
    height: 15px;
  }

  h2 {
    font-size: 1.6rem;
  }

  .heading-text p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .our-esteemed-clients-section {
    padding: 60px 0;
  }

  .client-logo {
    width: 60px;
    height: 60px;
  }

  .client-logo div {
    width: 30px;
    height: 10px;
  }

  .stats-grid {
    gap: 0.7rem;
  }

  .heading-text h2 {

    font-size: 1.3rem;
  }

  .heading-image {
    max-width: 90vw;
  }

  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}



/* Inner Pages Common CSS */
/* Section wrapper */
.service-detail-section {
  background: var(--light-bg);
  padding: var(--section-pad);
}

.section-gap {
  /* margin-top: 2rem;
  margin-bottom: 2rem; */
}

/* Flex row */
.service-detail-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.service-detail-row.reverse {
  flex-direction: row-reverse;
}

/* Text column */
.service-content {
  flex: 1 1 70%;
  min-width: 300px;
}

.service-content h1 {
  background: linear-gradient(90deg, var(--accent), #2c5364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 700;
}

.service-content h1::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem 0;
  border-radius: 2px;
}

.service-content h2 {
  background: linear-gradient(90deg, var(--accent), #2c5364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 700;
}

.service-content h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem 0;
  border-radius: 2px;
}

.service-content p {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-content ul li {
  font-size: var(--para-size);
  color: var(--text-mid);
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.service-content ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(120deg, var(--secondary), var(--primary));
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  border-radius: var(--card-radius);
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Image column */
.service-image {
  flex: 1 1 30%;
  min-width: 300px;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.service-image img:hover {
  transform: scale(1.03);
}

/* Why Choose Section */
.why-choose {
  margin-top: 3.5rem;
  text-align: center;
}

.why-choose h2,
.why-choose h3 {
  color: var(--accent);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
}

.why-choose h2::after,
.why-choose h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.why-choose .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-choose .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 1rem;
}

.why-choose .feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.why-choose .feature-item p {
  font-size: var(--para-size);
  color: var(--text-mid);
  margin-bottom: 0;
}

/* New Sections Styling */
.service-detail-section .row.mt-5 {
  margin-top: 3.5rem;
}

.service-detail-section .row.mt-5 h2 {
  background: linear-gradient(90deg, var(--accent), #2c5364);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.service-detail-section .row.mt-5 h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.service-detail-section .row.mt-5 p {
  font-size: var(--para-size);
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.service-detail-section .row.mt-5 ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-detail-section .row.mt-5 ul li {
  font-size: var(--para-size);
  color: var(--text-mid);
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail-section .row.mt-5 ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.service-detail-section .row.mt-5 ul li strong {
  color: #7a869a;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-detail-section .row.mt-5 .text-center p {
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .service-detail-row {
    flex-direction: column;
  }

  .service-content h1 {
    font-size: 2rem;
  }

  .service-content h2 {
    font-size: 1.75rem;
  }

  .service-detail-section .row.mt-5 h2 {
    font-size: 1.75rem;
  }

  .service-content {
    flex: 1 1 100%;
  }

  .service-image {
    flex: 1 1 100%;
  }

  .why-choose .feature-list {
    grid-template-columns: 1fr;
  }
}




/* =============================
   CONTACT PAGE STYLES
   ============================= */
.social-section {
  padding: var(--section-pad);
  background: var(--light-bg);
}

.social-section h2 {
  font-size: var(--heading-size);
  color: var(--accent);
  margin-bottom: 1rem;
}

.social-section .icon-tile {
  background: var(--dark-bg);
  color: var(--accent);
  border-radius: var(--card-radius);
  padding: 2rem 1rem;
  transition: transform var(--transition), background var(--transition);
  box-shadow: var(--card-shadow);
}

.social-section .icon-tile i {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.social-section .icon-tile div {
  font-size: var(--para-small-size);
}

.social-section .icon-tile:hover {
  background: var(--gradient-hero);
  color: #fff;
  transform: translateY(-4px);
}

.form-section {
  padding: var(--section-pad);
  background: var(--gradient-section);
}

.form-section h2 {
  font-size: var(--heading-size);
  color: var(--accent);
  margin-bottom: 1rem;
}
.form-section .form-control::placeholder,
.form-section .form-select ::placeholder{
  color: var(--accent);
  font-size: 1rem;
}
.form-section .form-control,
.form-section .form-select {
  background: var(--light-bg);
  color: var(--accent);
  border: 1px solid var(--secondary);
  border-radius: var(--card-radius);
  padding: 0.75rem;
  transition: border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-section .form-control:focus,
.form-section .form-select:focus {
  background: var(--accent);
  color: var(--light-bg);
  outline: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.4);
  
}

.form-section .form-control:focus::placeholder,
.form-section .form-select:focus::placeholder{
  color:var(--light-bg);
}
.form-section input .form-section .btn-primary {
  background: var(--primary);
  border: none;
  border-radius: var(--card-radius);
  padding: 0.75rem 2rem;
  font-size: var(--para-size);
  font-weight: 600;
  /* transition: background var(--transition),
                box-shadow var(--transition); */
}

.form-section .btn-primary:hover {
  background: var(--secondary);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.map-section {
  width: 100%;
  height: 400px;
  margin-top: var(--section-pad);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}